home *** CD-ROM | disk | FTP | other *** search
/ Old Testament Foundatiosn with Philip Yancey / Old Testament Foundatiosn with Philip Yancey - Disc 2.iso / pc / data / bookordr.dir / 00021.ls < prev    next >
Encoding:
Text File  |  1996-09-09  |  482 b   |  22 lines

  1. on mouseUp
  2.   global gMouseClickCounter, gFrame
  3.   set gMouseClickCounter to gMouseClickCounter + 1
  4.   if gMouseClickCounter = 1 then
  5.     puppetSound("wrong1.aif")
  6.     updateStage()
  7.   end if
  8.   if gMouseClickCounter = 2 then
  9.     puppetSound("badwisdo.aif")
  10.     updateStage()
  11.   end if
  12.   if gMouseClickCounter = 3 then
  13.     puppetSound("wrong3.aif")
  14.     updateStage()
  15.     repeat while soundBusy(1)
  16.       nothing()
  17.     end repeat
  18.     set gFrame to gFrame + 1
  19.     go(marker(1))
  20.   end if
  21. end
  22.